27038a7ac3c60756c3fd53c2ae249c3c82f541b2,phoneProfilesPlus/src/main/java/sk/henrichg/phoneprofilesplus/EditorEventListFragment.java,EditorEventListFragment,showTargetHelps,#,723

Before Change


                        .targets(
                                TapTarget.forToolbarMenuItem(bottomToolbar, R.id.menu_add_event, getString(R.string.editor_activity_targetHelps_newEventButton_title), getString(R.string.editor_activity_targetHelps_newEventButton_description))
                                        .id(1),
                                TapTarget.forToolbarMenuItem(bottomToolbar, R.id.menu_delete_all_events, getString(R.string.editor_activity_targetHelps_deleteAllEventsButton_title), getString(R.string.editor_activity_targetHelps_deleteAllEventsButton_description))
                                        .id(2),
                                TapTarget.forToolbarMenuItem(bottomToolbar, R.id.important_info, getString(R.string.editor_activity_targetHelps_importantInfoButton_title), getString(R.string.editor_activity_targetHelps_importantInfoButton_description))
                                        .id(3)
                        )

After Change


                editor.putBoolean(PREF_START_TARGET_HELPS, false);
                editor.commit();

                int circleColor = 0xFFFFFF;
                if (PPApplication.applicationTheme.equals("dark"))
                    circleColor = 0x7F7F7F;

                final TapTargetSequence sequence = new TapTargetSequence(getActivity())
                        .targets(
                                TapTarget.forToolbarMenuItem(bottomToolbar, R.id.menu_add_event, getString(R.string.editor_activity_targetHelps_newEventButton_title), getString(R.string.editor_activity_targetHelps_newEventButton_description))
                                        .targetCircleColorInt(circleColor)
                                        .textColorInt(0xFFFFFF)
                                        .drawShadow(true)
                                        .id(1),
                                TapTarget.forToolbarMenuItem(bottomToolbar, R.id.menu_delete_all_events, getString(R.string.editor_activity_targetHelps_deleteAllEventsButton_title), getString(R.string.editor_activity_targetHelps_deleteAllEventsButton_description))
                                        .targetCircleColorInt(circleColor)
                                        .textColorInt(0xFFFFFF)
                                        .drawShadow(true)
                                        .id(2),
                                TapTarget.forToolbarMenuItem(bottomToolbar, R.id.important_info, getString(R.string.editor_activity_targetHelps_importantInfoButton_title), getString(R.string.editor_activity_targetHelps_importantInfoButton_description))
                                        .targetCircleColorInt(circleColor)
                                        .textColorInt(0xFFFFFF)